home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-04-13 | 321 b | 21 lines | [TEXT/ttxt] |
- -- Part of SmallEiffel -- Read DISCLAIMER file -- Copyright (C)
- -- Dominique COLNET and Suzanne COLLIN -- colnet@loria.fr
- --
- class FIXED_ARRAY2_BENCH
-
- inherit BENCH;
-
- creation make
-
- feature
-
- cltn: FIXED_ARRAY2[DOUBLE];
-
- make is
- do
- !!cltn.make(count1,count2);
- bench;
- end;
-
- end -- FIXED_ARRAY2_BENCH
-